home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / libglib2.0-0.postinst < prev    next >
Encoding:
Text File  |  2010-09-10  |  479 b   |  24 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. case "$1" in
  5. triggered)
  6.     # This is triggered everytime an application installs a GIO
  7.     # module into /usr/lib/gio/modules
  8.     /usr/lib/glib-2.0/gio-querymodules /usr/lib/gio/modules
  9.         exit 0
  10. ;;
  11. esac
  12.  
  13. # Also handle the initial installation
  14. if [ -d /usr/lib/gio/modules ]; then
  15.     /usr/lib/glib-2.0/gio-querymodules /usr/lib/gio/modules
  16. fi
  17.  
  18. # Automatically added by dh_makeshlibs
  19. if [ "$1" = "configure" ]; then
  20.     ldconfig
  21. fi
  22. # End automatically added section
  23.  
  24.